#contain {
  width: 150px;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
  animation: fadeIn 1s 1;
  animation-fill-mode: forwards;
  -webkit-animation: fadeIn 1s 1;
  -webkit-animation-fill-mode: forwards;
}

.wrap {
  animation: translate 1000ms infinite ease-in-out alternate, zindex 2000ms infinite ease-in-out;
  -webkit-animation: translate 1000ms infinite ease-in-out alternate, zindex 2000ms infinite ease-in-out;
  position: absolute;
}

.ball {
  width: 50px;
  height: 50px;
  box-shadow: 0 -6.25px 0 rgba(0, 0, 0, 0.15) inset;
  background-color: #E3746B;
  border-radius: 50%;
  animation: scale 1000ms infinite ease-in-out alternate;
  animation-delay: -500ms;
  transform: scale(0.5);
  -webkit-animation: scale 1000ms infinite ease-in-out alternate;
  -webkit-animation-delay: -500ms;
  -webkit-transform: scale(0.5);
  border: 2px solid black;
}

.ball:after {
  content: '';
  width: 50px;
  height: 13px;
  background: #eee;
  position: absolute;
  top: 70px;
  border-radius: 50%;
}

#wrap2 {
  animation-delay: -1000ms;
  -webkit-animation-delay: -1000ms;
}

#ball2 {
  background-color: #397BF9;
  animation-delay: -1500ms;
  -webkit-animation-delay: -1500ms;
}

#wrap3 {
  animation-delay: -1500ms;
  -webkit-animation-delay: -1500ms;
}

#ball3 {
  background-color: #F4B400;
  animation-delay: -2000ms;
  -webkit-animation-delay: -2000ms;
}

#wrap4 {
  animation-delay: -2500ms;
  -webkit-animation-delay: -2500ms;
}

#ball4 {
  background-color: #0F9D58;
  animation-delay: -3000ms;
  -webkit-animation-delay: -3000ms;
}
@-webkit-keyframes translate {
  100% {
    transform: translateX(100px);
    -webkit-transform: translateX(100px);
  }
}
@keyframes translate {
  100% {
    transform: translateX(100px);
    -webkit-transform: translateX(100px);
  }
}
@-webkit-keyframes  scale {
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes scale {
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@-webkit-keyframes zindex {
  25% {
    z-index: 1;
  }
  75% {
    z-index: -1;
  }
}
@keyframes zindex {
  25% {
    z-index: 1;
  }
  75% {
    z-index: -1;
  }
}
@-webkit-keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}